home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / pov3demo / showoff / pov / fisheye < prev    next >
Text File  |  1995-11-08  |  798b  |  40 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Dan Farmer
  3. // Fisheye lens example
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9. #include "shapes.inc"
  10.  
  11. camera {
  12.    ultra_wide_angle
  13.    location <0, 4, -8>
  14.    direction <0, 0, 2>
  15.    up <0, 1, 0>
  16.    right <1.33, 0, 0>
  17.    look_at <0.5, 0, 0>
  18.    angle 300
  19. }
  20.  
  21. background { color Gray55 }
  22.  
  23. light_source { <-2, 4, 1> color Gray70 }
  24. light_source { <10, 8, 1> color Gray40 }
  25.  
  26. plane { y,0 pigment { checker color Plum color White } }
  27.  
  28. #default {
  29.     pigment { SteelBlue }
  30.     finish {
  31.         reflection 0.9
  32.         diffuse 0
  33.         ambient 0.1
  34.         phong 1 phong_size 30
  35.     }
  36. }
  37. object { Disk_Y translate < -2, 1,  6> }
  38. object { Disk_Y translate <  0, 1,  0> }
  39. object { Disk_Y translate <  2, 1, -3> }
  40.